home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / Money-Money.swf / scripts / DefineButton2_84 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-08-19  |  896 b   |  28 lines

  1. on(release){
  2.    if(_root.name != "" && _root.score != 0)
  3.    {
  4.       _root.scoretable.filename = "scores/mmm.sco";
  5.       _root.scoretable.scoresize = 10;
  6.       _root.scoretable.action = "INSERT";
  7.       _root.scoretable.viewtype = "FLASH";
  8.       _root.scoretable.winname = _root.name;
  9.       _root.scoretable.winscore = _root.score;
  10.       _root.scoretable.loadVariables("http://www.naive.it/mmm/scores.php","GET");
  11.       scrittahome._visible = true;
  12.       scrittaplayagain._visible = true;
  13.       campotesto._visible = false;
  14.       scrittaleave._visible = false;
  15.       pulsdone._visible = false;
  16.       scrittadone._visible = false;
  17.    }
  18.    else
  19.    {
  20.       scrittahome._visible = true;
  21.       scrittaplayagain._visible = true;
  22.       campotesto._visible = false;
  23.       scrittaleave._visible = false;
  24.       pulsdone._visible = false;
  25.       scrittadone._visible = false;
  26.    }
  27. }
  28.